home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / archive / userbox / publicdomain / engclock_v7.0.lha / EngClock_v7.0 / InstallLib < prev    next >
Text File  |  1996-05-25  |  943b  |  43 lines

  1. failat 21
  2. c:version >nil: libs:datatypes/sound.datatype VERSION=40
  3. if NOT warn
  4.     echo "You already have v40.6 of sound.datatype!"
  5.     skip nextbit
  6. endif
  7.  
  8. echo "Installing sound datatype..." NOLINE
  9. copy libs/datatypes/sound.datatype libs:datatypes
  10. copy libs/datatypes/sound.datatype sys:classes/datatypes
  11. c:version >nil: libs:datatypes/sound.datatype VERSION=40
  12. if warn
  13.     echo "failed!"
  14.     skip nextbit
  15. endif
  16. echo "done!"
  17.  
  18. lab nextbit
  19.  
  20. c:version >nil: libs:translator.library VERSION=41
  21. if NOT warn
  22.     echo "You already have v42 of translator.library!"
  23.     skip end
  24. endif
  25.  
  26. echo "Installing translator library..." NOLINE
  27. copy libs/translator.library libs:
  28. c:version >nil: libs:translator.library VERSION=42
  29. if warn
  30.     echo "failed!"
  31.     skip end
  32. endif
  33. echo "done!"
  34. echo ""
  35. echo "Installing accents..."
  36. makedir >nil: locale:Accents ; This will quietly fail if already present
  37. copy locale/accents/#? locale:accents
  38.  
  39. echo ""
  40. echo "Installation complete!"
  41.  
  42. lab end
  43.